Detail view  Back to full view


Removing something from something (past tense removed it from)

Removing is not really an action in its own right. Whereas there are many ways to put something down (on the floor, on top of something, inside something else, giving it to somebody else, and so on), Inform has only one way to take something: the taking action. Removing exists only to provide some nicely worded replies to impossible requests, and in all sensible cases is converted into taking.


Typed commands leading to this action

    "take [things inside] from [something]"
    "take [things inside] off [something]"
    "get [things inside] from [something]"
    "remove [things inside] from [something]"

Rules controlling this action

    before    doing something in The Captain's Office   
    check        an actor taking  can't take component parts rule
    check        an actor removing something from  can't remove what's not inside rule
    check        an actor removing something from  can't remove from people rule
    check        an actor removing something from  convert remove to take rule
    report        (display LibMsg <report player removing>; ...) [E1]
    report        someone trying removing   [E1]


[E1]. Defined in Custom Library Messages by David Fisher